+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
+Sun Sep 2 20:32:36 2001 Jonathan Blandford <jrb@redhat.com>
+
+ * gtk/gtktreeview.c (gtk_tree_view_scroll_to_cell): patch from
+ vishnu@pobox.com (Joshua N Pritikin) to fix math and an assertion,
+ #59731
+
Sun Sep 2 17:38:42 2001 Jonathan Blandford <jrb@redhat.com>
* gtk/gtktreeview.c (gtk_tree_view_deleted): Patch from
GdkRectangle cell_rect;
GdkRectangle vis_rect;
gint dest_x, dest_y;
+ gfloat within_margin = 0;
/* FIXME work on unmapped/unrealized trees? maybe implement when
* we do incremental reflow for trees
}
else
{
- if (dest_x < vis_rect.x)
- dest_x = vis_rect.x;
- else if (dest_x + cell_rect.width > vis_rect.x + vis_rect.width)
- dest_x = vis_rect.x + vis_rect.width - cell_rect.width;
+ if (cell_rect.x < vis_rect.x)
+ dest_x = cell_rect.x - vis_rect.width * within_margin;
+ else if (cell_rect.x + cell_rect.width > vis_rect.x + vis_rect.width)
+ dest_x = cell_rect.x + cell_rect.width - vis_rect.width * (1 - within_margin);
}
}
}
else
{
- if (dest_y < vis_rect.y)
- dest_y = vis_rect.y;
- else if (dest_y + cell_rect.height > vis_rect.y + vis_rect.height)
- dest_y = vis_rect.y + vis_rect.height - cell_rect.height;
+ if (cell_rect.y < vis_rect.y)
+ dest_y = cell_rect.y - vis_rect.height * within_margin;
+ else if (cell_rect.y + cell_rect.height > vis_rect.y + vis_rect.height)
+ dest_y = cell_rect.y + cell_rect.height - vis_rect.height * (1 - within_margin);
}
}
g_return_if_fail (GTK_IS_TREE_VIEW (tree_view));
g_return_if_fail (column == NULL || GTK_IS_TREE_VIEW_COLUMN (column));
g_return_if_fail (rect != NULL);
- g_return_if_fail (column->tree_view == (GtkWidget *) tree_view);
+ g_return_if_fail (!column || column->tree_view == (GtkWidget *) tree_view);
g_return_if_fail (GTK_WIDGET_REALIZED (tree_view));
gtk_widget_style_get (GTK_WIDGET (tree_view), "vertical_separator", &vertical_separator, NULL);